home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Date
- @Method: getMinutes() - returns the minutes
- starting with 0.
- @Syntax: date.getMinutes()
- @Summary: getMinutes - returns the minutes
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("date.getMinutes()", selection);
- editor.setActive("Insert date.getMinutes");
- }
- }
-
- !!/Script
-